home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ForCLI / 0Utils13.lha / 0Utils / Open.doc < prev    next >
Text File  |  1995-02-21  |  736b  |  47 lines

  1.  
  2.  
  3.     NAME
  4.     Open
  5.  
  6.     SYNOPSIS
  7.     Open - Open a file - Requires v37
  8.  
  9.     INPUTS
  10.     "FILE/A,READ/S,WRITE/S"
  11.  
  12.     FUNCTION
  13.     Openes an AmigaDOS Filehandle on a
  14.     certain file. the filehandle must be
  15.     closed with 'Close'.
  16.     Open is necessary for all filehandle
  17.     commands like ReadLn, WriteLn or
  18.     Close.
  19.  
  20.     RESULT
  21.     The BPTR to the created Filehandle
  22.  
  23.     NOTES
  24.     ! Open is highly dangerous! Do not Use it, if !
  25.     ! U do not exactly know what U are doing!     !
  26.  
  27.     CLI - only
  28.  
  29.     should compile with SAS-C
  30.  
  31.     BUGS
  32.  
  33.     EXAMPLES
  34.     > set fh `Open T:writetest WRITE`
  35.     > WriteLn $fh This is a test
  36.     > Close $fh
  37.     > Unset fh
  38.     > cat T:writetest
  39.       This is a test
  40.  
  41.     AUTHOR
  42.     Bernd Noll, Brunnenstrasse 55, D-67661 Kaiserslautern
  43.     noll@student.uni-kl.de
  44.  
  45.  
  46.  
  47.